<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>AI Archive</title>
    <description>Heejin Do&apos;s Personal Archive for Artificial Intelligence Knowledge.
</description>
    <link>https://doheejin.github.io/</link>
    <atom:link href="https://doheejin.github.io/feed.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Sun, 04 Jan 2026 13:36:34 +0000</pubDate>
    <lastBuildDate>Sun, 04 Jan 2026 13:36:34 +0000</lastBuildDate>
    <generator>Jekyll v3.10.0</generator>
    
      <item>
        <title>[Linux] rename 명령어로 파일명 변경</title>
        <description>&lt;p&gt;&lt;strong&gt;rename&lt;/strong&gt; 리눅스에서 파일명을 변경하는 명령어 중 하나이다.&lt;/p&gt; &lt;hr /&gt; &lt;h2 id=&quot;사용법&quot;&gt;사용법&lt;/h2&gt; &lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-bash&quot; data-lang=&quot;bash&quot;&gt;&lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt; rename &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;options] &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;from_text] &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;to_text] &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;what_file] &lt;span class=&quot;c&quot;&gt;# from_text: 변경 전...</description>
        <pubDate>Mon, 12 Dec 2022 19:25:52 +0000</pubDate>
        <link>https://doheejin.github.io/linux/2022/12/12/linux-rename.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/linux/2022/12/12/linux-rename.html</guid>
        
        <category>linux</category>
        
        <category>rename</category>
        
        
        <category>linux</category>
        
      </item>
    
      <item>
        <title>[Linux] 리눅스 파일/디렉토리 크기, 용량 확인 (ls, du, df)</title>
        <description>&lt;p&gt;리눅스에서 파일 크기를 확인 할 수 있는 명령어를 정리해보았다.&lt;/p&gt; &lt;h3 id=&quot;1-ls-명령어&quot;&gt;1. ls 명령어&lt;/h3&gt; &lt;p&gt;&lt;strong&gt;ls&lt;/strong&gt; 명령어를 사용하는 방법이다. &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;-l&lt;/code&gt; 옵션은 파일 크기를 바이트로 표시하며 한 줄당 한 파일/디렉토리 정보를...</description>
        <pubDate>Tue, 20 Sep 2022 19:25:52 +0000</pubDate>
        <link>https://doheejin.github.io/linux/2022/09/20/linux-file-size.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/linux/2022/09/20/linux-file-size.html</guid>
        
        <category>linux</category>
        
        <category>ls</category>
        
        <category>df</category>
        
        <category>du</category>
        
        <category>file</category>
        
        <category>size</category>
        
        
        <category>linux</category>
        
      </item>
    
      <item>
        <title>[Tensorflow] tf.cond()로 조건에 따른 함수 반환</title>
        <description>&lt;blockquote&gt; &lt;dl&gt; &lt;dt&gt;출처 (reference)&lt;/dt&gt; &lt;dd&gt;&lt;a href=&quot;https://www.tensorflow.org/api_docs/python/tf/cond&quot;&gt;https://www.tensorflow.org/api_docs/python/tf/cond&lt;/a&gt;&lt;/dd&gt; &lt;dd&gt;&lt;a href=&quot;https://tensorflowkorea.gitbooks.io/tensorflow-kr/content/g3doc/api_docs/python/control_flow_ops.html&quot;&gt;https://tensorflowkorea.gitbooks.io/tensorflow-kr/content/g3doc/api_docs/python/control_flow_ops.html&lt;/a&gt;&lt;/dd&gt; &lt;/dl&gt; &lt;/blockquote&gt; &lt;p&gt;Tensorflow에서 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;tf.cond()&lt;/code&gt;를 이용해 조건의 True/False 여부에 따라 다른 함수를 반환하는 방법을 소개한다.&lt;/p&gt; &lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;tf.cond()&lt;/code&gt;는 pred가 참일 때...</description>
        <pubDate>Thu, 15 Sep 2022 21:22:52 +0000</pubDate>
        <link>https://doheejin.github.io/tensorflow/2022/09/15/tensorflow-cond.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/tensorflow/2022/09/15/tensorflow-cond.html</guid>
        
        <category>tensorflow</category>
        
        <category>tf</category>
        
        <category>cond</category>
        
        <category>condition</category>
        
        <category>cond()</category>
        
        
        <category>tensorflow</category>
        
      </item>
    
      <item>
        <title>[Tensorflow] run_eagerly = True로 디버그 모드로 실행, 텐서플로우 디버깅</title>
        <description>&lt;blockquote&gt; &lt;dl&gt; &lt;dt&gt;출처 (reference)&lt;/dt&gt; &lt;dd&gt;&lt;a href=&quot;https://keras.io/examples/keras_recipes/debugging_tips/&quot;&gt;https://keras.io/examples/keras_recipes/debugging_tips/&lt;/a&gt;&lt;/dd&gt; &lt;dd&gt;&lt;a href=&quot;https://discuss.tensorflow.org/t/what-does-the-run-eagerly-parameter-in-model-compile-do/1924/9&quot;&gt;https://discuss.tensorflow.org/t/what-does-the-run-eagerly-parameter-in-model-compile-do/1924/9&lt;/a&gt;&lt;/dd&gt; &lt;/dl&gt; &lt;/blockquote&gt; &lt;p&gt;Tensorflow Keras를 사용해 모델을 훈련할 때, 학습 과정에서 tensor의 값을 확인하기 위해 code를 debug mode로 실행하는 방법을 소개한다.&lt;/p&gt; &lt;p&gt;compile()에 &lt;code...</description>
        <pubDate>Sun, 11 Sep 2022 19:25:52 +0000</pubDate>
        <link>https://doheejin.github.io/tensorflow/2022/09/11/tensorflow-run_eagerly.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/tensorflow/2022/09/11/tensorflow-run_eagerly.html</guid>
        
        <category>tensorflow</category>
        
        <category>keras</category>
        
        <category>debug</category>
        
        <category>debugging</category>
        
        <category>tf</category>
        
        <category>deep_learning</category>
        
        
        <category>tensorflow</category>
        
      </item>
    
      <item>
        <title>[NLP] Similarity Measures (유사도 측정)</title>
        <description>&lt;p&gt;자연어처리에서 유용하게 쓰일 수 있는, 문서/벡터 간 유사도를 측정하는 기법들을 간단히 정리해보았다.&lt;/p&gt; &lt;h3 id=&quot;1-euclidean-distance-유클리드-거리&quot;&gt;1. Euclidean Distance (유클리드 거리)&lt;/h3&gt; &lt;p&gt;유클리드 거리는 두 점 사이의 거리를 계산하며, 두 점 $p=(p_{1}, p_{2}, …,...</description>
        <pubDate>Sun, 04 Sep 2022 15:20:52 +0000</pubDate>
        <link>https://doheejin.github.io/ai_concepts/2022/09/04/similarities.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/ai_concepts/2022/09/04/similarities.html</guid>
        
        <category>Euclidean</category>
        
        <category>Minkowski</category>
        
        <category>Cosine</category>
        
        <category>Jaccard</category>
        
        <category>Similarity</category>
        
        <category>Correlation</category>
        
        
        <category>AI_Concepts</category>
        
      </item>
    
      <item>
        <title>[NLP/TS] Parallel Corpora for Text Simplification (TS task 데이터 정리)</title>
        <description>&lt;p&gt;Text Simplification에서 사용되어 온 Parallel Corpus들을 접근 가능한 링크와 함께 정리해보았다.&lt;/p&gt; &lt;h3 id=&quot;1-ew-sew-url&quot;&gt;1. EW-SEW (&lt;a href=&quot;https://cs.pomona.edu/~dkauchak/simplification/&quot;&gt;URL&lt;/a&gt;)&lt;/h3&gt; &lt;ul&gt; &lt;li&gt;English Dataset / 137,000 aligned pairs&lt;/li&gt; &lt;li&gt;EW(English Wikipedia)와 SEW(Simple English Wikipedia)의 문장과 문서를...</description>
        <pubDate>Mon, 02 May 2022 19:25:52 +0000</pubDate>
        <link>https://doheejin.github.io/ai_concepts/2022/05/02/pr-text-simplification-datasets.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/ai_concepts/2022/05/02/pr-text-simplification-datasets.html</guid>
        
        <category>ts</category>
        
        <category>dataset</category>
        
        <category>parallel</category>
        
        <category>corpora</category>
        
        
        <category>AI_Concepts</category>
        
      </item>
    
      <item>
        <title>[Flask] Flask - 파이썬 코드에서 웹으로 값 전달</title>
        <description>&lt;p&gt;앞선 포스트에서 Flask 설치 및 간단한 사용법을 익혔다.&lt;/p&gt; &lt;p&gt;이번 포스트에서는 파이썬 코드의 값을 웹으로 전달하는 방법을 정리해보았다.&lt;/p&gt; &lt;h2 id=&quot;1-templates-폴더-생성-후-파일-추가&quot;&gt;1. templates 폴더 생성 후 파일 추가&lt;/h2&gt; &lt;p&gt;이전에 작업한 폴더에 활용할 html...</description>
        <pubDate>Tue, 21 Dec 2021 19:25:52 +0000</pubDate>
        <link>https://doheejin.github.io/flask/2021/12/21/flask-second.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/flask/2021/12/21/flask-second.html</guid>
        
        <category>flask</category>
        
        <category>python</category>
        
        <category>introduction</category>
        
        
        <category>flask</category>
        
      </item>
    
      <item>
        <title>[Flask] Flask - 설치 및 사용법</title>
        <description>&lt;p&gt;flask는 웹 개발을 위해 사용되는 파이썬 프레임워크이다. 파이썬으로 구현한 코드 상에서 바로 import 해서 사용할 수 있기 때문에, training 된 딥러닝 모델을 사용하는 웹 형태의 어플리케이션을 만들 때 유용하게 활용...</description>
        <pubDate>Tue, 21 Dec 2021 19:25:52 +0000</pubDate>
        <link>https://doheejin.github.io/flask/2021/12/21/flask-intro.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/flask/2021/12/21/flask-intro.html</guid>
        
        <category>flask</category>
        
        <category>python</category>
        
        <category>introduction</category>
        
        
        <category>flask</category>
        
      </item>
    
      <item>
        <title>[vscode] 자주 사용되는 단축키 모음 - 편집/검색/주석</title>
        <description>&lt;p&gt;vscode에서 자주 사용히는 단축키를 정리해보았다.&lt;/p&gt; &lt;h3 id=&quot;편집&quot;&gt;편집&lt;/h3&gt; &lt;ol&gt; &lt;li&gt;&lt;strong&gt;변수명 변경(renaming)&lt;/strong&gt; : 변수/함수명 선택 + &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;F2&lt;/code&gt; &lt;ul&gt; &lt;li&gt;연관된 변수를 모두 다 변경해준다 (다른 파일에서 참조되었더라도).&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;strong&gt;행 이동(line...</description>
        <pubDate>Mon, 13 Dec 2021 19:25:52 +0000</pubDate>
        <link>https://doheejin.github.io/vscode/2021/12/13/pytorch-shortcuts.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/vscode/2021/12/13/pytorch-shortcuts.html</guid>
        
        <category>vscode</category>
        
        <category>shortcuts</category>
        
        
        <category>vscode</category>
        
      </item>
    
      <item>
        <title>[PyTorch] 딥러닝 학습 오류 탐지 : torch.autograd.detect_anomaly</title>
        <description>&lt;p&gt;&lt;strong&gt;torch.autograd&lt;/strong&gt;는 함수의 자동 미분을 구현하기 위한 클래스들과 함수들을 제공한다.&lt;/p&gt; &lt;p&gt;유용하게 사용 할 수 있는 여러 함수가 있지만, 이 포스트에서는, 이상(오류)이 발생했을 때 그 추적 log를 출력해주는 detect_anomaly 클래스에 대해 정리해보았다.&lt;/p&gt;...</description>
        <pubDate>Wed, 22 Sep 2021 19:25:52 +0000</pubDate>
        <link>https://doheejin.github.io/pytorch/2021/09/22/pytorch-autograd-detect-anomaly.html</link>
        <guid isPermaLink="true">https://doheejin.github.io/pytorch/2021/09/22/pytorch-autograd-detect-anomaly.html</guid>
        
        <category>pytorch</category>
        
        <category>error</category>
        
        <category>detect</category>
        
        <category>anomaly</category>
        
        <category>deep_learning</category>
        
        
        <category>pytorch</category>
        
      </item>
    
  </channel>
</rss>
