repo_id
stringlengths
21
96
file_path
stringlengths
31
155
content
stringlengths
1
92.9M
__index_level_0__
int64
0
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/interleaved-buffer/README.md
<img width="50" heigth="50" src="https://webpack.js.org/assets/icon-square-big.svg" /> ## Use deck.gl with Interleaved Binary Data ## Usage To install dependencies: ```bash npm install # or yarn ``` Commands: * `npm start` is the development target, to serves the app and hot reload. * `npm run build` is the prod...
0
rapidsai_public_repos/node/modules/demo/deck/interleaved-buffer
rapidsai_public_repos/node/modules/demo/deck/interleaved-buffer/src/data.js
const data = [ { color: [180, 50, 0], position: [0, 0, 0] }, { color: [205, 150, 0], position: [0, 5, 0] }, { color: [75, 125, 0], position: [5, 5, 0] }, { color: [0, 205, 150], position: [5, 10, 0] }, { color: [0, 125, 180], position: [10, 10, 0] }, { c...
0
rapidsai_public_repos/node/modules/demo/deck/interleaved-buffer
rapidsai_public_repos/node/modules/demo/deck/interleaved-buffer/src/app.js
import {Deck, OrthographicView} from '@deck.gl/core'; import {ScatterplotLayer, PathLayer, SolidPolygonLayer} from '@deck.gl/layers'; import GL from '@luma.gl/constants'; import {Buffer} from '@luma.gl/core'; import data from './data'; /** DeckGL **/ const deck = new Deck({ container: 'container', views: new Orth...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/heatmap/package.json
{ "private": true, "name": "@rapidsai/demo-deck-heatmap", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimental-vm-modules --enable-so...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/heatmap/index.js
#!/usr/bin/env node // Copyright (c) 2020, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/heatmap/README.md
This is a minimal standalone version of the HeatmapLayer example on [deck.gl](http://deck.gl) website. ### Usage Copy the content of this folder to your project. ```bash # install dependencies npm install # or yarn # bundle and serve the app with webpack npm start ``` ### Data format Sample data is stored in [deck...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/heatmap/app.jsx
import { HeatmapLayer } from '@deck.gl/aggregation-layers'; import DeckGL from '@deck.gl/react'; import * as React from 'react'; import { StaticMap } from 'react-map-gl'; const DATA_URL = 'https://raw.githubusercontent.com/visgl/deck.gl-data/master/examples/screen-grid/uber-pickup-locations.json'; // eslint-disable...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/geojson/package.json
{ "private": true, "name": "@rapidsai/demo-deck-geojson", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimental-vm-modules --enable-so...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/geojson/index.js
#!/usr/bin/env node // Copyright (c) 2020, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/geojson/README.md
This is a minimal standalone version of the GeoJsonLayer example on [deck.gl](http://deck.gl) website. ### Usage Copy the content of this folder to your project. To see the base map, you need a [Mapbox access token](https://docs.mapbox.com/help/how-mapbox-works/access-tokens/). You can either set an environment var...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/geojson/app.jsx
import { _SunLight as SunLight, AmbientLight, LightingEffect } from '@deck.gl/core'; import { GeoJsonLayer, PolygonLayer } from '@deck.gl/layers'; import DeckGL from '@deck.gl/react'; import { scaleThreshold } from 'd3-scale'; import * as React from 'react'; import { Component } from 'react'; import { render } from 're...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/mesh/package.json
{ "private": true, "name": "@rapidsai/demo-deck-mesh-layer-example", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimental-vm-modules ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/mesh/index.js
#!/usr/bin/env node // Copyright (c) 2020, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/mesh/README.md
This is a minimal example of [deck.gl](http://deck.gl)'s SimpleMeshLayer. ### Usage Copy the content of this folder to your project. ```bash # install dependencies npm install # or yarn # bundle and serve the app with webpack npm start ``` ### Data format This example generates an arbitrary set of data points. T...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/mesh/app.jsx
import * as React from 'react' import { PureComponent } from 'react'; import { render } from 'react-dom'; import DeckGL from '@deck.gl/react'; import { COORDINATE_SYSTEM, OrbitView, DirectionalLight, LightingEffect, AmbientLight } from '@deck.gl/core'; import { SolidPolygonLayer } from '@deck.gl/layers'; impo...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/plot/package.json
{ "private": true, "name": "@rapidsai/demo-deck-plot", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimental-vm-modules --enable-sourc...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/plot/index.js
#!/usr/bin/env node // Copyright (c) 2020, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/plot/README.md
This is a minimal standalone version of the Graph Explorer example on [deck.gl](http://deck.gl) website. ### Usage Copy the content of this folder to your project. ```bash # install dependencies npm install # or yarn # bundle and serve the app with webpack npm start ``` ### Data format Sample data is stored in the...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/plot/app.jsx
import { OrbitView } from '@deck.gl/core'; import DeckGL from '@deck.gl/react'; import { scaleLinear } from 'd3-scale'; import * as React from 'react'; import { Component } from 'react'; import { render } from 'react-dom'; import PlotLayer from './plot-layer'; const EQUATION = (x, y) => (Math.sin(x * x + y * y) * x) ...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/index.js
export {default as AxesLayer} from './axes-layer'; export {default as SurfaceLayer} from './surface-layer'; export {default} from './plot-layer';
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/axes-fragment.glsl.js
// Copyright (c) 2015 - 2017 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/label-fragment.glsl.js
// Copyright (c) 2015 - 2017 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/README.md
# Plot Layer This layer plots a math equation in 3d space. Each sample point on the 3d surface is represented by `x, y, z` values and color. It can also render axes and labels around the surface. (requires `d3-scale` module) import PlotLayer from './plot-layer'; Inherits from all [Base Layer](/docs/layers/base-l...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/grid-vertex.glsl.js
// Copyright (c) 2015 - 2017 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/utils.js
/* global document */ import GL from '@luma.gl/constants'; import {Texture2D} from '@luma.gl/core'; // helper for textMatrixToTexture function setTextStyle(ctx, fontSize) { ctx.font = `${fontSize}px Helvetica,Arial,sans-serif`; ctx.fillStyle = '#000'; ctx.textBaseline = 'top'; ctx.textAlign = 'center'; } /* ...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/axes-layer.js
import {Layer} from '@deck.gl/core'; import GL from '@luma.gl/constants'; import {Model, Geometry} from '@luma.gl/core'; import {textMatrixToTexture} from './utils'; import fragmentShader from './axes-fragment.glsl'; import gridVertex from './grid-vertex.glsl'; import labelVertex from './label-vertex.glsl'; import la...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/plot-layer.js
import {CompositeLayer, COORDINATE_SYSTEM} from '@deck.gl/core'; import {scaleLinear} from 'd3-scale'; import AxesLayer from './axes-layer'; import SurfaceLayer from './surface-layer'; const DEFAULT_GET_SCALE = {type: 'function', value: () => scaleLinear()}; const DEFAULT_TICK_FORMAT = {type: 'function', value: x => ...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/label-vertex.glsl.js
// Copyright (c) 2015 - 2017 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/fragment.glsl.js
// Copyright (c) 2015 - 2017 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/surface-layer.js
import {Layer, picking} from '@deck.gl/core'; import GL from '@luma.gl/constants'; import {Model} from '@luma.gl/core'; import surfaceVertex from './surface-vertex.glsl'; import fragmentShader from './fragment.glsl'; const DEFAULT_COLOR = [0, 0, 0, 255]; const defaultProps = { data: [], getPosition: () => [0, 0,...
0
rapidsai_public_repos/node/modules/demo/deck/plot
rapidsai_public_repos/node/modules/demo/deck/plot/plot-layer/surface-vertex.glsl.js
// Copyright (c) 2015 - 2017 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/brushing/package.json
{ "private": true, "name": "@rapidsai/demo-deck-brushing", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimental-vm-modules --enable-s...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/brushing/index.js
#!/usr/bin/env node // Copyright (c) 2020, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/brushing/README.md
This is a minimal standalone version of the BrushingLayer example on [deck.gl](http://deck.gl) website. ### Usage Copy the content of this folder to your project. To see the base map, you need a [Mapbox access token](https://docs.mapbox.com/help/how-mapbox-works/access-tokens/). You can either set an environment va...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/brushing/app.jsx
/* global fetch */ import { BrushingExtension } from '@deck.gl/extensions'; import { ArcLayer, ScatterplotLayer } from '@deck.gl/layers'; import DeckGL from '@deck.gl/react'; import { scaleLinear } from 'd3-scale'; import * as React from 'react'; import { Component } from 'react'; import { StaticMap } from 'react-map-g...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/arc/package.json
{ "private": true, "name": "@rapidsai/demo-deck-arc", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimental-vm-modules --enable-source...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/arc/index.js
#!/usr/bin/env node // Copyright (c) 2020-2023, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless requ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/arc/README.md
This is a minimal standalone version of the ArcLayer example on [deck.gl](http://deck.gl) website. ### Usage Copy the content of this folder to your project. To see the base map, you need a [Mapbox access token](https://docs.mapbox.com/help/how-mapbox-works/access-tokens/). You can either set an environment variabl...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/arc/app.js
// Copyright (c) 2022, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/scenegraph-layer/package.json
{ "private": true, "name": "@rapidsai/demo-deck-scenegraph-layer-demo", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimental-vm-modul...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/scenegraph-layer/index.js
#!/usr/bin/env node // Copyright (c) 2020, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/scenegraph-layer/README.md
This is a standalone demo of the [scenegraph layer](./scenegraph-layer) built upon [deck.gl](http://deck.gl). This example illustrates the scenegraph layer features. ### Usage Copy the content of this folder to your project. To see the base map, you need a [Mapbox access token](https://docs.mapbox.com/help/how-mapb...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/scenegraph-layer/app.jsx
/* global fetch, setTimeout, clearTimeout */ import * as React from 'react' import { Component, Fragment } from 'react'; import { render } from 'react-dom'; import { StaticMap } from 'react-map-gl'; import DeckGL from '@deck.gl/react'; import { ScenegraphLayer } from '@deck.gl/mesh-layers'; import { GLTFLoader } from...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/line/package.json
{ "private": true, "name": "@rapidsai/demo-deck-line", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimental-vm-modules --enable-sourc...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/line/index.js
#!/usr/bin/env node // Copyright (c) 2020, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/line/README.md
This is a minimal standalone version of the LineLayer example on [deck.gl](http://deck.gl) website. ### Usage Copy the content of this folder to your project. To see the base map, you need a [Mapbox access token](https://docs.mapbox.com/help/how-mapbox-works/access-tokens/). You can either set an environment variab...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/line/app.jsx
import * as React from 'react'; import { Component } from 'react'; import { render } from 'react-dom'; import DeckGL from '@deck.gl/react'; import { LineLayer, ScatterplotLayer } from '@deck.gl/layers'; import GL from '@luma.gl/constants'; import { StaticMap } from 'react-map-gl'; import { log as deckLog } from '@deck....
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/3d-heatmap/package.json
{ "private": true, "name": "@rapidsai/demo-deck-3d-heatmap", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimental-vm-modules --enable...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/3d-heatmap/index.js
#!/usr/bin/env node // Copyright (c) 2020, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required ...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/3d-heatmap/README.md
This is a minimal standalone version of the 3DHeatmap example on [deck.gl](http://deck.gl) website. ### Usage Copy the content of this folder to your project. To see the base map, you need a [Mapbox access token](https://docs.mapbox.com/help/how-mapbox-works/access-tokens/). You can either set an environment variab...
0
rapidsai_public_repos/node/modules/demo/deck
rapidsai_public_repos/node/modules/demo/deck/3d-heatmap/app.jsx
import { HexagonLayer } from '@deck.gl/aggregation-layers'; import { AmbientLight, LightingEffect, PointLight } from '@deck.gl/core'; import DeckGL from '@deck.gl/react'; import * as React from 'react'; import { Component } from 'react'; import { StaticMap } from 'react-map-gl'; // Set your mapbox token here const MAP...
0
rapidsai_public_repos/node/modules/demo/tfjs
rapidsai_public_repos/node/modules/demo/tfjs/addition-rnn/package.json
{ "private": true, "name": "@rapidsai/demo-tfjs-addition-rnn", "main": "index.js", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experime...
0
rapidsai_public_repos/node/modules/demo/tfjs
rapidsai_public_repos/node/modules/demo/tfjs/addition-rnn/index.js
#!/usr/bin/env node // Copyright (c) 2021, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required ...
0
rapidsai_public_repos/node/modules/demo/tfjs
rapidsai_public_repos/node/modules/demo/tfjs/addition-rnn/demo.js
/** * @license * Copyright 2018 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs
rapidsai_public_repos/node/modules/demo/tfjs/addition-rnn/README.md
# TensorFlow.js Example: Addition RNN A minimal standalone version of the [Addition RNN example](https://github.com/tensorflow/tfjs-examples/tree/d974c7ffa87416510c5978684bee5aa0715459db/addition-rnn) from the [tfjs-examples repository](https://github.com/tensorflow/tfjs-examples) running in node.
0
rapidsai_public_repos/node/modules/demo/tfjs
rapidsai_public_repos/node/modules/demo/tfjs/addition-rnn/app.js
// Copyright (c) 2021, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or ...
0
rapidsai_public_repos/node/modules/demo/tfjs
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test.js
// Copyright (c) 2021, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or ...
0
rapidsai_public_repos/node/modules/demo/tfjs
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/package.json
{ "private": true, "name": "@rapidsai/demo-tfjs-webgl-tests", "main": "index.js", "version": "22.12.2", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "bin": "index.js", "scripts": { "start": "node --experimen...
0
rapidsai_public_repos/node/modules/demo/tfjs
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/index.js
#!/usr/bin/env node // Copyright (c) 2021-2022, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless requ...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/tex_util_test.d.ts
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/Reshape_test.js
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/Complex_test.d.ts
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/Max_test.d.ts
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/Max_test.js
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/setup_test.d.ts
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/flags_webgl_test.js
/** * @license * Copyright 2019 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/shader_compiler_util_test.js
/** * @license * Copyright 2018 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/canvas_util_test.js
/** * @license * Copyright 2018 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/STFT_test.js
/** * @license * Copyright 2021 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/gpgpu_util_test.d.ts
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_util_test.d.ts
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/Reshape_test.d.ts
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_batchnorm_test.d.ts
/** * @license * Copyright 2019 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/shader_compiler_util_test.d.ts
/** * @license * Copyright 2018 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_topixels_test.d.ts
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_ops_test.js
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_batchnorm_test.js
/** * @license * Copyright 2019 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_ops_test.d.ts
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_topixels_test.js
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_custom_op_test.js
/** * @license * Copyright 2018 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/gpgpu_context_test.js
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/gpgpu_context_test.d.ts
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/reshape_packed_test.d.ts
/** * @license * Copyright 2018 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/backend_webgl_test.d.ts
/** * @license * Copyright 2019 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/reshape_packed_test.js
/** * @license * Copyright 2018 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/setup_test.js
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_custom_op_test.d.ts
/** * @license * Copyright 2018 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/flags_webgl_test.d.ts
/** * @license * Copyright 2019 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/STFT_test.d.ts
/** * @license * Copyright 2021 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/canvas_util_test.d.ts
export {};
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/backend_webgl_test.js
/** * @license * Copyright 2019 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/Mean_test.js
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/webgl_util_test.js
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/Mean_test.d.ts
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/Complex_test.js
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/gpgpu_util_test.js
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests
rapidsai_public_repos/node/modules/demo/tfjs/webgl-tests/test/tex_util_test.js
/** * @license * Copyright 2017 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuda/package.json
{ "name": "@rapidsai/cuda", "version": "22.12.2", "description": "NVIDIA CUDA driver and runtime API bindings", "main": "index.js", "types": "build/js", "license": "Apache-2.0", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "homepage": "...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuda/index.js
// Copyright (c) 2020, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or ...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuda/jest.config.js
// Copyright (c) 2020-2021, NVIDIA CORPORATION. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable la...
0