This file contains 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
"actor_info": { | |
"actor_bounds": [ | |
[ | |
-31.9736328125, | |
37456.546875, | |
21606.87109375 | |
], | |
[ | |
1466.918212890625, | |
1122.478515625, |
This file contains 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
def __log(self, verb, url, requestHeaders, input, status, responseHeaders, output): | |
logger = logging.getLogger(__name__) | |
if logger.isEnabledFor(logging.DEBUG): | |
if "Authorization" in requestHeaders: | |
if requestHeaders["Authorization"].startswith("Basic"): | |
requestHeaders["Authorization"] = "Basic (login and password removed)" | |
elif requestHeaders["Authorization"].startswith("token"): | |
requestHeaders["Authorization"] = "token (oauth token removed)" | |
elif requestHeaders["Authorization"].startswith("Bearer"): | |
requestHeaders["Authorization"] = "Bearer (jwt removed)" |
This file contains 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
[2018.09.24-21.55.28:593][ 13]LogTemp: >>> import tensorflow | |
[2018.09.24-21.55.29:744][ 13]LogPython: loading flag values | |
[2018.09.24-21.55.29:744][ 13]LogPython: | |
[2018.09.24-21.55.29:745][ 13]LogPython: loading flag values | |
[2018.09.24-21.55.29:745][ 13]LogPython: | |
[2018.09.24-21.55.29:746][ 13]LogPython: reloading tf flags | |
[2018.09.24-21.55.29:746][ 13]LogPython: |
This file contains 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
/Game/TuningCars/Maps/Demonstration : Can't find file for asset. /Game/TuningCars/Maps/Demonstration_BuiltData | |
Failed to load /Game/TuningCars/Maps/Demonstration_BuiltData.Demonstration_BuiltData Referenced by PersistentLevel | |
CreateExport: Failed to load Outer for resource '_handbrake': BlueprintGeneratedClass /Game/TuningCars/Blueprint/DeepDriveServerProxy.DeepDriveServerProxy_C | |
CreateExport: Failed to load Outer for resource 'ReleaseCounter': BlueprintGeneratedClass /Game/TuningCars/Blueprint/DeepDriveServerProxy.DeepDriveServerProxy_C | |
CreateExport: Failed to load Outer for resource 'RequestCounter': BlueprintGeneratedClass /Game/TuningCars/Blueprint/DeepDriveServerProxy.DeepDriveServerProxy_C | |
CreateExport: Failed to load Outer for resource 'IsControlled': BlueprintGeneratedClass /Game/TuningCars/Blueprint/DeepDriveServerProxy.DeepDriveServerProxy_C | |
CreateExport: Failed to load Outer for resource 'DefaultSceneRoot': BlueprintGeneratedClass /Game/TuningCars/Blueprint/DeepDriveServerProxy.DeepDriveServerProxy |
This file contains 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
from __future__ import print_function | |
import fnmatch | |
import os | |
import sys | |
import shutil | |
# Usage: | |
# Copy this file into the parent directory you want to split and run it from there | |
CURR_DIR = dir_path = os.path.dirname(os.path.realpath(__file__)) |
This file contains 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
prop_a4_pile_01 | |
prop_a4_sheet_01 | |
prop_a4_sheet_02 | |
prop_a4_sheet_03 | |
prop_a4_sheet_04 | |
prop_a4_sheet_05 | |
prop_abat_roller_static | |
prop_abat_slide | |
prop_acc_guitar_01 | |
prop_acc_guitar_01_d1 |
This file contains 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
[ | |
0, | |
1, | |
2, | |
3, | |
4, | |
5, | |
6, | |
10, | |
11, |
This file contains 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
SIZE = 227 | |
def show_image_read_from_hdf5_file(img): | |
from skimage.viewer import ImageViewer | |
img = np.array(img, dtype='u1') | |
img = img.transpose((1, 2, 0)) | |
img = img[:, :, ::-1] | |
viewer = ImageViewer(img.reshape(SIZE, SIZE, 3)) | |
viewer.show() |
This file contains 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
# -*- coding: utf-8 -*- | |
import h5py | |
import os | |
import numpy as np | |
from random import shuffle | |
import shutil | |
from PIL import Image | |
SIZE = 227 |
This file contains 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 plotly | |
from plotly.graph_objs import Scatter, Layout | |
plotly.offline.plot({ | |
"data": [ | |
Scatter(x=times, y=losses) | |
], | |
"layout": Layout( | |
title="loss over time" | |
) | |
}) |