https://github.com/jncraton/languagemodels

 

GitHub - jncraton/languagemodels: Explore large language models in 512MB of RAM

Explore large language models in 512MB of RAM. Contribute to jncraton/languagemodels development by creating an account on GitHub.

github.com

 

상용인듯 한데 그래도 쉽게 써볼 있는 장점이 있다.

max_ram 을 512M ~ 8G 까지 조정해서 여러 모델을 쉽게 사용할 수 있는듯.

 

max_ram

0.5 LaMini-Flan-T5-248M 0.248
1.0 LaMini-Flan-T5-783M 0.783
2.0 LaMini-Flan-T5-783M 0.783
4.0 flan-alpaca-gpt4-xl 3.0
8.0 openchat-3.5-0106 7.0

 

'컴퓨터 이야기~ > 소프트웨어' 카테고리의 다른 글

윈도우 10 - 잠금 배경 화면 사용 안하기  (0) 2024.07.14
이미지 뷰어 - FastStone  (0) 2024.06.15
js obfuscator  (0) 2024.06.06
js 로만 이루어진 captcha 인듯  (0) 2024.06.06
Android Platform Guide  (0) 2024.06.06
,

https://pureinfotech.com/disable-lock-screen-windows-10/#disable_lockscreen_windows10_regedit

 

Disable Windows 10 Lock Screen from Registry

Windows 10 Home doesn’t include the Local Group Policy Editor, but it is still possible to disable the feature by modifying the Registry. This method works in the Home edition as well as on Windows 10 Pro, Enterprise, and Education.

To disable the Lock Screen through the Registry, use these steps:

  1. Open Start.
  2. Search for regedit, and select the top result to open the Registry.
  3. Browse the following path:
  4. HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows
  5. Right-click the Windows key (folder), select the New submenu, and choose the Key option.
  6. Name the key Personalization and press Enter.
  7. Right-click the Personalization folder, select the New submenu, and choose the DWORD option.
  8. Name the key Nolockscreen and press Enter.
  9. Double-click the Nolockscreen key and set its value data from 0 to 1 to disable the Lock Screen.
  10. Click the OK button.
  11. Reboot the computer.

After you restart your computer, Windows 10 will bypass the Lock Screen and go straight to the sign-in screen.

If you prefer accessing your account without typing a password and skipping the signing-in screen, you can use these instructions to remove the login password in three different ways.

'컴퓨터 이야기~ > 소프트웨어' 카테고리의 다른 글

512 메가 램에서도 써볼 수 있는 LLM  (0) 2024.07.14
이미지 뷰어 - FastStone  (0) 2024.06.15
js obfuscator  (0) 2024.06.06
js 로만 이루어진 captcha 인듯  (0) 2024.06.06
Android Platform Guide  (0) 2024.06.06
,

정말 빠르다. AcdSee 보다 빠른듯한 느낌.

 

https://www.faststone.org/FSIVDownload.htm

,

,

https://github.com/robiveli/js-captcha

 

,

https://cordova.apache.org/docs/en/latest/guide/platforms/android/index.html

 

Android Platform Guide - Apache Cordova

Android Platform Guide This guide will assist you in setting up your development environment for building Cordova apps on Android devices. Additionally, it provides the option to incorporate Android-specific command-line tools into your development workflo

cordova.apache.org

 

안드로이드 플랫폼 프로그래밍에 대해 간략히 잘 나와있다. 제일 아래 부분 다음 내용 잘 참고.

 

,

,

수집하는 data 가 없고 analytics 를 위해 access 만 하는 app (Model Dermatology - Wiki ; https://apps.apple.com/app/id1553068524)
 
 

GitHub - chemerisuk/cordova-plugin-firebase-analytics: Cordova plugin for Firebase Analytics

Cordova plugin for Firebase Analytics. Contribute to chemerisuk/cordova-plugin-firebase-analytics development by creating an account on GitHub.

github.com

 

다음과 같이 privacy manifest 를 작성해서 appstore 에 통과하였다.
 
 
 
    <privacy-manifest>
      <key>NSPrivacyAccessedAPITypes</key>
      <array>
        <dict>
          <key>NSPrivacyAccessedAPIType</key>
          <string>NSPrivacyAccessedAPICategoryUserDefaults</string>
          <key>NSPrivacyAccessedAPITypeReasons</key>
          <array>
            <string>CA92.1</string>
          </array>
        </dict>
      </array>
      <key>NSPrivacyCollectedDataTypes</key>
      <array>
        <dict>
          <key>NSPrivacyCollectedDataType</key>
          <string>NSPrivacyCollectedDataTypeUserID</string>
          <key>NSPrivacyCollectedDataTypeLinked</key>
          <true/>
          <key>NSPrivacyCollectedDataTypePurposes</key>
          <array>
            <string>NSPrivacyCollectedDataTypePurposeAnalytics</string>
          </array>
          <key>NSPrivacyCollectedDataTypeTracking</key>
          <false/>
        </dict>
        <dict>
          <key>NSPrivacyCollectedDataType</key>
          <string>NSPrivacyCollectedDataTypeDeviceID</string>
          <key>NSPrivacyCollectedDataTypeLinked</key>
          <true/>
          <key>NSPrivacyCollectedDataTypePurposes</key>
          <array>
            <string>NSPrivacyCollectedDataTypePurposeAnalytics</string>
          </array>
          <key>NSPrivacyCollectedDataTypeTracking</key>
          <true/>
        </dict>
        <dict>
          <key>NSPrivacyCollectedDataType</key>
          <string>NSPrivacyCollectedDataTypeCoarseLocation</string>
          <key>NSPrivacyCollectedDataTypeLinked</key>
          <true/>
          <key>NSPrivacyCollectedDataTypePurposes</key>
          <array>
            <string>NSPrivacyCollectedDataTypePurposeAnalytics</string>
          </array>
          <key>NSPrivacyCollectedDataTypeTracking</key>
          <false/>
        </dict>
        <dict>
          <key>NSPrivacyCollectedDataType</key>
          <string>NSPrivacyCollectedDataTypeProductInteraction</string>
          <key>NSPrivacyCollectedDataTypeLinked</key>
          <true/>
          <key>NSPrivacyCollectedDataTypePurposes</key>
          <array>
            <string>NSPrivacyCollectedDataTypePurposeAnalytics</string>
          </array>
          <key>NSPrivacyCollectedDataTypeTracking</key>
          <false/>
        </dict>
        <dict>
          <key>NSPrivacyCollectedDataType</key>
          <string>NSPrivacyCollectedDataTypePerformanceData</string>
          <key>NSPrivacyCollectedDataTypeLinked</key>
          <true/>
          <key>NSPrivacyCollectedDataTypePurposes</key>
          <array>
            <string>NSPrivacyCollectedDataTypePurposeAnalytics</string>
          </array>
          <key>NSPrivacyCollectedDataTypeTracking</key>
          <false/>
        </dict>
        <dict>
          <key>NSPrivacyCollectedDataType</key>
          <string>NSPrivacyCollectedDataTypeOtherDiagnosticData</string>
          <key>NSPrivacyCollectedDataTypeLinked</key>
          <true/>
          <key>NSPrivacyCollectedDataTypePurposes</key>
          <array>
            <string>NSPrivacyCollectedDataTypePurposeAnalytics</string>
          </array>
          <key>NSPrivacyCollectedDataTypeTracking</key>
          <false/>
        </dict>
        <dict>
          <key>NSPrivacyCollectedDataType</key>
          <string>NSPrivacyCollectedDataTypeOtherDataTypes</string>
          <key>NSPrivacyCollectedDataTypeLinked</key>
          <true/>
          <key>NSPrivacyCollectedDataTypePurposes</key>
          <array>
            <string>NSPrivacyCollectedDataTypePurposeAnalytics</string>
          </array>
          <key>NSPrivacyCollectedDataTypeTracking</key>
          <false/>
        </dict>
      </array>
      <key>NSPrivacyTracking</key>
      <false/>
      <key>NSPrivacyTrackingDomains</key>
      <array/>
    </privacy-manifest>
 
,

src = "구형 기기를 위한 icon"

foreground & background = "adaptive icon fore & back"

아이콘 생성은 https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html  를 이용하면 된다.

구형/신형 기기에서 잘 동작하는것 확인함.

 

    <icon density="ldpi" src="res/icons/android/ldpi.png"/>

    <icon density="mdpi" src="res/android/icon/mipmap-mdpi/ic_launcher.png" foreground="res/android/icon/mipmap-mdpi/ic_launcher_adaptive_fore.png"  background="res/android/icon/mipmap-mdpi/ic_launcher_adaptive_back.png" />
    <icon density="hdpi" src="res/android/icon/mipmap-hdpi/ic_launcher.png" foreground="res/android/icon/mipmap-hdpi/ic_launcher_adaptive_fore.png" background="res/android/icon/mipmap-hdpi/ic_launcher_adaptive_back.png"/>
    <icon density="xhdpi" src="res/android/icon/mipmap-xhdpi/ic_launcher.png" foreground="res/android/icon/mipmap-xhdpi/ic_launcher_adaptive_fore.png" background="res/android/icon/mipmap-xhdpi/ic_launcher_adaptive_back.png"/>
    <icon density="xxhdpi" src="res/android/icon/mipmap-xxhdpi/ic_launcher.png" foreground="res/android/icon/mipmap-xxhdpi/ic_launcher_adaptive_fore.png" background="res/android/icon/mipmap-xxhdpi/ic_launcher_adaptive_back.png"/>
    <icon density="xxxhdpi" src="res/android/icon/mipmap-xxxhdpi/ic_launcher.png" foreground="res/android/icon/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png" background="res/android/icon/mipmap-xxxhdpi/ic_launcher_adaptive_back.png"/>
,

임시 파일 삭제 프로그램으로 매우 유용하다.

실행하면 바로 appdata 등에 있는 임시 파일이 삭제된다. 

 

Temp File Cleaner.exe
0.15MB

 

,