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
| " ░█░█░▀█▀░█▄█ | |
| " ░▀▄▀░░█░░█░█ | |
| " ░░▀░░▀▀▀░▀░▀ | |
| set nocompatible "I don't necessarily need Vim to be compatible with Vi | |
| filetype off "Allow for plugins | |
| scriptencoding utf-8 | |
| set encoding=utf-8 "Read files as UTF8 | |
| set fileencoding=utf-8 "Write new files as UTF8 |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDBfAqfhLo9xPjGjWrS2COEbPB19SLAbePK2Hu4yg6SYewdOUGhEhlVMywHZvqIFgErWDocwJZyRvAXd0R56nqycU+RsdFY4cU786i9OigxDWO/q4S5/QGUB5giecFfphUw9mKPjEPLYY5UR+XPfvFBn4lxm9/YODNfcWhFNzZ4MxGZirelATazeUGknA1ic8mmSP/ZGUQlAZrq57XHOKkgZiECaIqIGtThXwRWmkMvvr9UYEAojHkgnaAxDC+u1DDBtI+D3gKiygFvnx/y8EEcMLoOEyOVko8W8EN3cXfkcdodDZR+M/JjLIBEXP5/rtjNpMf5J6Lfm6OaGqoztw1LEAosf4pEd0qFn12hBmcESUtR6dhmPYcJT/bU4B38lDoISUeY219nbrnx9fzroaidUIHQKdWyVETO9+tjjQjASks74NXPJj/tr7nVf7MD3YBTld+gpxrjGKE7IYPBnjKHPIK55p7cavwxH58Fnl7uYXXdF4uM44ToN64NHygoMNXRuegovZvg02M8G5WOWjiPHXPVR9B5bERwUf1C2KHAd+Aw59FW44VTzo23Bvej53x+nBalRbm12yEeq088NPZNifIw/i8ViHqCZ3XqzjCaftwQGJswTw09bSlyNp/oVwH4zWSNi7z0YHh5/EEmzqf4rKXP+TCY4Pd2xBr8J7dtdQ== kpfromer2@gmail.com |
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
| { | |
| "name": "projects/222309772370/locations/us-central1/operations/1015008222382_optimizer-extension_4", | |
| "metadata": { | |
| "@type": "type.googleapis.com/google.cloud.ml.v1.SuggestTrialsMetadata", | |
| "study": "projects/222309772370/locations/us-central1/studies/jun_study_0710_1", | |
| "createTime": "2020-07-15T15:11:29Z", | |
| "suggestionCount": 2, | |
| "clientId": "optimizer-extension" | |
| }, | |
| "done": true, |
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
| import * as React from 'react'; | |
| import { | |
| Box, | |
| Typography, | |
| Button, | |
| TextField, | |
| Dialog, | |
| DialogTitle, | |
| DialogContent, | |
| DialogContentText, |
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
| #!/bin/sh | |
| # Cleanup | |
| pipenv --rm | |
| rm node_modules jupyterlab_caip_optimizer/node_modules -rf | |
| # Install packages | |
| npm install | |
| npm run bootstrap | |
| pipenv install |
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
| import { AsyncState } from './async_slice'; | |
| import { ServerProxyTransportService } from '../service/transport'; | |
| import { createSlice, createAsyncThunk } from '@reduxjs/toolkit'; | |
| // TODO: use from Jun's changes | |
| export interface Trial { | |
| name: string; | |
| } | |
| export interface Study { |
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
| interface ParameterBase { | |
| parameter: string; | |
| } | |
| type Parameter = ParameterBase & | |
| ({ | |
| floatValue: number; | |
| }) | |
| | { | |
| intValue: Number; |
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
| set nocompatible "I don't necessarily need Vim to be compatible with Vi | |
| filetype off "Allow for plugins | |
| scriptencoding utf-8 | |
| set encoding=utf-8 "Read files as UTF8 | |
| set fileencoding=utf-8 "Write new files as UTF8 | |
| set tabstop=4 "Tabs should appear to be 4 spaces wide | |
| set softtabstop=4 "When deleting indenting spaces, delete 4 spaces/1 tab at a time | |
| set shiftwidth=4 "Indents should be a tab |
NewerOlder