🥚

Recent Notes

  • 독파모 2차 평가, 벤치마크 1위 모티프가 사용성에서 밀려 4위로 탈락했다

    2026년 8월 30일 08:02

  • Absci

    2026년 8월 30일 07:03

  • NVIDIA

    2026년 8월 30일 07:03

  • Starship Technologies

    2026년 8월 30일 06:50

See 355 more →

classification

·····
  • Logistic Regression

    2023년 10월 4일

    # Lab 5 Logistic Regression Classifier import tensorflow as tf tf.set_random_seed(777) # for reproducibility x_data = [[1, 2], [2, 3], [3, 1], [4, 3], [5, 3], [6, 2]] y_data = [[0], [0], [0], [1], [1], [1]] # placeholders for a tensor that will be always fed.

    • deep-learning
    • tensorflow
    • regression
    • logistic-regression
    • classification
  • Softmax Function

    2023년 10월 4일

    Logistic Regression 의 그래프 함수를 통과하기 전의 값을 Score(Logit) 이라 부른다. 통과한 난 뒤의 값은 확률이다.

    • deep-learning
    • tensorflow
    • classification
    • softmax
    • cost-function
    • cross-entropy
  • MNIST Dataset

    2023년 10월 4일

    MNIST Dataset # Lab 7 Learning rate and Evaluation import tensorflow as tf import matplotlib.pyplot as plt import random tf.set_random_seed(777) # for reproducibility # 텐서플로우에서 데이터 받아오기 from tensorflow.examples.tutorials.mnist import input_data # Check out www.tensorflow.org/get_started/mnist/beginn...

    • deep-learning
    • tensorflow
    • mnist
    • classification

Wansook.World

세상을 이해해보려는 작은 여행.

Donation

© 2026 Wansook.World · All rights reserved. · v1.3.1177