반응형 Python61 [Python] Stock Prediction Advanced Stock Pattern Prediction using LSTM with the Attention Mechanism in TensorFlow: A step by step Guide with Apple Inc. (AAPL) Data https://drlee.io/advanced-stock-pattern-prediction-using-lstm-with-the-attention-mechanism-in-tensorflow-a-step-by-143a2e8b0e95 Advanced Stock Pattern Prediction using LSTM with the Attention Mechanism in TensorFlow: A step by… Introduction drlee.io Introducti.. 2024. 4. 15. hexa string to Floating-point value # hexa string to Floating-point value # hexa string to Floating-point value import struct # Hexadecimal string hex_string = "43663334" # Convert hexadecimal string to binary string binary_string = bin(int(hex_string, 16))[2:].zfill(32) # Split binary string into sign, exponent, and mantissa sign_bit = int(binary_string[0]) exponent = int(binary_string[1:9], 2) mantissa = int(binary_string[9:], 2.. 2024. 4. 2. [python]reactpy from sympy.plotting import plot from sympy import * x=Symbol('x') plot(x**2, line_color='red') from sympy.plotting import plot3d x,y=symbols('x y') plot3d(x*y, (x, -10,10), (y, -10,10)) 2024. 3. 19. mqtt 참고사이트 https://jeong-f.tistory.com/172 [ 파이썬 ] HiveMQ MQTT 통신 테스트 MQTT 통신 M2M, IOT를 위한 프로토콜로서, 최소한의 전력과 패킷량으로 통신하므로, IOT와 모바일 애플리케이션 등의 통신에 매우 적합한 프로토콜 PUBLISH : 발행 SUBSCRIBE : 구독(모니터링) MQTT 브로커 jeong-f.tistory.com MQTT 통신 M2M, IOT를 위한 프로토콜로서, 최소한의 전력과 패킷량으로 통신하므로, IOT와 모바일 애플리케이션 등의 통신에 매우 적합한 프로토콜 PUBLISH : 발행 SUBSCRIBE : 구독(모니터링) MQTT 브로커 구동 하기 Mosquitto HiveMQ mosca ActiveMQ RabbitMQ HiveMQ를 이용하여 테.. 2024. 3. 19. 이전 1 2 3 4 5 6 7 8 ··· 16 다음 반응형