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
Annotation Type: bbox | |
loading annotations into memory... | |
Done (t=3.38s) | |
creating index... | |
index created! | |
Loading and preparing results... | |
DONE (t=23.02s) | |
creating index... | |
index created! | |
evaluate category: person |
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
Annotation Type: bbox | |
loading annotations into memory... | |
Done (t=4.88s) | |
creating index... | |
index created! | |
Loading and preparing results... | |
DONE (t=30.50s) | |
creating index... | |
index created! | |
evaluate category: person |
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
2007_000032 | |
2007_000039 | |
2007_000063 | |
2007_000068 | |
2007_000121 | |
2007_000170 | |
2007_000241 | |
2007_000243 | |
2007_000250 | |
2007_000256 |
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 numpy as np | |
import itertools | |
DIMS = [3, 2, 2] | |
MAX_NUM_COMPONENTS = 2 ** np.prod(DIMS) | |
class Component(object): | |
def __init__(self, arr): | |
self.arr = arr |
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
python test_icdar.py --deploy iou_loss_final/test_nohyper_relu.pt --weights iou_loss_final/model/pva_4s_nohyper_relu_iter_40000.caffemodel --file ../../DATA/icdar15/test/ --save=1 --rf=10 --fcn_th=0.75 |
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
set sts=4 | |
set sw=4 | |
set autoindent | |
set smartindent | |
set smarttab | |
set expandtab | |
set number |
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
program (program->declaration-list) | |
declaration-list (declaration-list->declaration-list declaration) | |
declaration-list (declaration-list->declaration) | |
declaration (declaration->fun-declaration) | |
fun-declaration (fun-declaration->type-specifier ID ( params ) compound-stmt) | |
type-specifier (type-specifier->int) | |
int | |
ID | |
( | |
params (params->param-list) |
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 httplib2, os, time | |
def getCurTime(): | |
return time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())) | |
def logging(str): | |
file=open("nginx502.log", "w") | |
file.writelines(str) | |
file.close() | |
h = httplib2.Http(".cache") |
NewerOlder