😶🌫️
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 numpy as np | |
from keras.utils import np_utils | |
# 导入测试标签 | |
y_label = [] | |
with open('label.txt', 'r') as label_file: | |
y_label = label_file.read().split() | |
print(y_label) | |
y_label_new = ''.join(y_label) |
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
MUL32 PROC NEAR | |
;*************************************************************** | |
; 32 bit multiplication routine | |
; multiplies DX:AX x CX:BX | |
; returns 64 bit product in DX:AX:CX:BX | |
;*************************************************************** | |
PUSH SI | |
PUSH DI |
NewerOlder