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
Sub 粘贴时跳过隐藏行() | |
startRow = 2 | |
endRow = 1603 | |
startCol = 4 | |
endCol = 5 | |
srcStartCol = 1 | |
Dim Rng As Range |
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
# SSD with Mobilenet v1 configuration for MSCOCO Dataset. | |
# Users should configure the fine_tune_checkpoint field in the train config as | |
# well as the label_map_path and input_path fields in the train_input_reader and | |
# eval_input_reader. Search for "PATH_TO_BE_CONFIGURED" to find the fields that | |
# should be configured. | |
model { | |
ssd { | |
num_classes: 1 | |
box_coder { |
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
from multiprocessing import Queue | |
from threading import Thread | |
import time | |
def data_generator(): | |
for ex in range(380): | |
yield ex | |
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 fileencodings=utf-8 | |
set termencoding=utf-8 | |
set encoding=utf-8 | |
" 开启语法高亮 | |
syntax enable | |
" 开启语法高亮 | |
syntax on |
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
""" | |
Usage: | |
python allennlp_srl.py \ | |
https://s3-us-west-2.amazonaws.com/allennlp/models/srl-model-2017.09.05.tar.gz \ | |
examples.json | |
Note: | |
each line in examples.json is one sentence, such as: | |
Which NFL team represented the AFC at Super Bowl 50? | |
Where did Super Bowl 50 take place? |
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
/** | |
* Created by lan2720 on 15/11/10. | |
*/ | |
public class MergeSort { | |
public static void merge_1(int[] A, int p, int q, int r){ | |
/** | |
* 这种merge使用了哨兵 | |
*/ | |
// get the number of integer of each subArray | |
int n1 = q - p + 1; |
NewerOlder