| layout | post | |||
|---|---|---|---|---|
| title | Introduction to transfer learning | |||
| date | 2021-06-01 15:04 | |||
| excerpt | Can deep neural networks acquire knowledge from a fellow neural network ? Let's find out. | |||
| comments | true | |||
| tags |
|
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
| // Unused constants from src/lib/Constants.ts | |
| // Staged for upcoming configuration features | |
| // Removed from codebase in PR #157 to keep the bundle clean | |
| // Reference: PR #128 review comment #44 | |
| // CAD Types and Configurations (aligned with backend) | |
| export const CAD_TYPES = { | |
| solidworks: { | |
| name: 'SolidWorks', | |
| value: 'solidworks', |
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
| ## ------------------------------------------------------ ## | |
| # Author: ChanBong | |
| # Date: 2023/08/08 | |
| # Description: This script takes two subtitle files, one in spanish (or in any language for that matter) | |
| # and the other in english, and combines them into one subtitle file. The output file will be named | |
| # mixed.srt | |
| # Motivation: While learning a new language I love to hear and read in the target language while | |
| # still being able to fall back to a english transcription if need be. | |
| # I wanted to watch a movie in spanish with english subtitles, but I couldn't find any | |
| # subtitle files that had both spanish and english subtitles. So I wrote this script to combine the |
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
| #!/usr/bin/python3 | |
| ### | |
| # Download this file. | |
| # Change file permissions from your terminal by running `chmod +x todoist_to_obsidian.py` | |
| # Usage: ./todoist_to_obsidian.py | |
| ### | |
| import os | |
| import sys | |
| import pandas as pd |