This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { Keypair, PublicKey } = require("@solana/web3.js"); | |
| const { | |
| WhirlpoolContext, | |
| ORCA_WHIRLPOOL_PROGRAM_ID, | |
| WhirlpoolIx, | |
| } = require("@orca-so/whirlpools-sdk"); | |
| const { TransactionBuilder } = require("@orca-so/common-sdk"); | |
| const { AnchorProvider } = require("@coral-xyz/anchor"); | |
| const prompt = require("prompt"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Importing the libraries | |
| import tensorflow as tf | |
| import tensorflow_datasets as tdfs | |
| import tensorflow_addons as tfa | |
| from tensorflow.keras.optimizers import RMSprop | |
| # Model definition | |
| from tensorflow.keras import layers, Model, Input | |
| input_layer = Input(shape=(100, 100, 3), name="img") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Importing the libraries | |
| import tensorflow as tf | |
| import tensorflow_datasets as tdfs | |
| import tensorflow_addons as tfa | |
| from tensorflow.keras.optimizers import RMSprop | |
| # Model definition | |
| from tensorflow.keras import layers, Model, Input | |
| input_layer = Input(shape=(100, 100, 3), name="img") |