Instructions to use abdullah890/malconv with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use abdullah890/malconv with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://abdullah890/malconv") - Notebooks
- Google Colab
- Kaggle
File size: 5,114 Bytes
fcb8ee1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | import os
import sys
import argparse
import numpy as np
import tensorflow as tf
import pandas as pd
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from src.utils import read_binary_file
from src.model import MalConv
def predict_file(model_path, file_path, max_length=2_000_000): # 2,000,000
"""
๋จ์ผ ํ์ผ์ ๋ํ ์์ธก
Args:
model_path: ์ ์ฅ๋ ๋ชจ๋ธ ๊ฒฝ๋ก
file_path: ์์ธกํ ํ์ผ ๊ฒฝ๋ก
max_length: ์ต๋ ์
๋ ฅ ๊ธธ์ด
Returns:
float: ์์ธก ํ๋ฅ (0์ ๊ฐ๊น์ฐ๋ฉด ์
์ฑ์ฝ๋, 1์ ๊ฐ๊น์ฐ๋ฉด ์ ์)
"""
# ๋ชจ๋ธ ๋ก๋
model = MalConv(max_input_length=max_length)
# ๋ชจ๋ธ์ ๊ฐ์ค์น๋ฅผ ๋ก๋ํ๊ธฐ ์ ์ ๋น๋
dummy_input = tf.zeros((1, max_length), dtype=tf.int32)
model(dummy_input) # ๋ชจ๋ธ ๋น๋
model.load_weights(model_path)
# ํ์ผ ์ฝ๊ธฐ
byte_array = read_binary_file(file_path, max_length)
# ๋ฐฐ์น ์ฐจ์ ์ถ๊ฐ
input_data = np.expand_dims(byte_array, axis=0)
# ์์ธก
prediction = model.predict(input_data, verbose=0)[0][0]
return prediction
def predict_batch(model_path, csv_path, output_path=None, max_length=2**20):
"""
๋ฐฐ์น ์์ธก
Args:
model_path: ์ ์ฅ๋ ๋ชจ๋ธ ๊ฒฝ๋ก
csv_path: ์์ธกํ ํ์ผ๋ค์ CSV ๊ฒฝ๋ก
output_path: ๊ฒฐ๊ณผ ์ ์ฅ ๊ฒฝ๋ก
max_length: ์ต๋ ์
๋ ฅ ๊ธธ์ด
"""
# ๋ชจ๋ธ ๋ก๋
print("๋ชจ๋ธ ๋ก๋ฉ ์ค...")
model = MalConv(max_input_length=max_length)
# ๋ชจ๋ธ์ ๊ฐ์ค์น๋ฅผ ๋ก๋ํ๊ธฐ ์ ์ ๋น๋
dummy_input = tf.zeros((1, max_length), dtype=tf.int32)
model(dummy_input) # ๋ชจ๋ธ ๋น๋
model.load_weights(model_path)
# CSV ํ์ผ ์ฝ๊ธฐ
df = pd.read_csv(csv_path)
predictions = []
labels = []
print("์์ธก ์ค...")
for idx, row in df.iterrows():
file_path = row['filepath']
if os.path.exists(file_path):
try:
# ํ์ผ ์ฝ๊ธฐ
byte_array = read_binary_file(file_path, max_length)
input_data = np.expand_dims(byte_array, axis=0)
# ์์ธก
pred = model.predict(input_data, verbose=0)[0][0]
predictions.append(pred)
# ๋ผ๋ฒจ์ด ์๋ ๊ฒฝ์ฐ
if 'label' in row:
labels.append(row['label'])
# ๊ฒฐ๊ณผ ์ถ๋ ฅ
status = "์ ์" if pred > 0.5 else "์
์ฑ์ฝ๋"
confidence = pred if pred > 0.5 else 1 - pred
print(f"{file_path}: {status} (์ ๋ขฐ๋: {confidence:.4f})")
except Exception as e:
print(f"Error processing {file_path}: {e}")
predictions.append(-1) # ์๋ฌ ํ์
else:
print(f"ํ์ผ์ ์ฐพ์ ์ ์์ต๋๋ค: {file_path}")
predictions.append(-1)
# ๊ฒฐ๊ณผ ์ ์ฅ
result_df = df.copy()
result_df['prediction'] = predictions
result_df['predicted_label'] = (np.array(predictions) > 0.5).astype(int)
result_df['prediction_text'] = ['์ ์' if p > 0.5 else '์
์ฑ์ฝ๋' if p >= 0 else '์๋ฌ'
for p in predictions]
if output_path:
result_df.to_csv(output_path, index=False)
print(f"๊ฒฐ๊ณผ๊ฐ ์ ์ฅ๋์์ต๋๋ค: {output_path}")
# ์ ํ๋ ๊ณ์ฐ (๋ผ๋ฒจ์ด ์๋ ๊ฒฝ์ฐ)
if labels and len(labels) == len(predictions):
valid_predictions = [p for p in predictions if p >= 0]
valid_labels = [labels[i] for i, p in enumerate(predictions) if p >= 0]
if valid_predictions:
pred_binary = (np.array(valid_predictions) > 0.5).astype(int)
accuracy = np.mean(pred_binary == np.array(valid_labels))
print(f"\n์ ํ๋: {accuracy:.4f}")
return result_df
def main():
parser = argparse.ArgumentParser(description='MalConv ๋ชจ๋ธ ์์ธก')
parser.add_argument('model_path', help='์ ์ฅ๋ ๋ชจ๋ธ ๊ฒฝ๋ก')
parser.add_argument('--file', help='๋จ์ผ ํ์ผ ์์ธก')
parser.add_argument('--csv', help='๋ฐฐ์น ์์ธก์ฉ CSV ํ์ผ')
parser.add_argument('--output', help='๊ฒฐ๊ณผ ์ ์ฅ ๊ฒฝ๋ก')
parser.add_argument('--max_length', type=int, default=2**20, help='์ต๋ ์
๋ ฅ ๊ธธ์ด')
args = parser.parse_args()
if args.file:
# ๋จ์ผ ํ์ผ ์์ธก
prediction = predict_file(args.model_path, args.file, args.max_length)
status = "์ ์" if prediction > 0.5 else "์
์ฑ์ฝ๋"
confidence = prediction if prediction > 0.5 else 1 - prediction
print(f"ํ์ผ: {args.file}")
print(f"์์ธก: {status} (์ ๋ขฐ๋: {confidence:.4f})")
elif args.csv:
# ๋ฐฐ์น ์์ธก
predict_batch(args.model_path, args.csv, args.output, args.max_length)
else:
print("--file ๋๋ --csv ์ต์
์ ์ง์ ํด์ฃผ์ธ์.")
if __name__ == "__main__":
main()
|