文責 mala
経緯:
- Meety退会しようと思ったがアカウントがなかったので、退会するためにアカウントを作ることにした。
免責:
- 気になった範囲ですぐに見つかったもののうち、悪用可能なものを記載しています。
- 好ましくないが仕様だろうというものは書いていません。
import Metal | |
import RealityKit | |
import SwiftUI | |
#Preview { ExtrudedTextLowLevelMeshView() } | |
struct ExtrudedTextLowLevelMeshView: View { | |
@State var lowLevelMesh: LowLevelMesh? | |
@State var originalVerticesBuffer: MTLBuffer? | |
@State var timer: Timer? | |
#ifndef MarchingCubesParams_h | |
#define MarchingCubesParams_h | |
#include <simd/simd.h> | |
struct MarchingCubesParams { | |
simd_uint3 cells; | |
simd_float3 origin; | |
simd_float3 cellSize; | |
float isoLevel; | |
simd_float3 centerA; |
import Metal | |
import RealityKit | |
import SwiftUI | |
struct BurnFadeModelView: View { | |
@State var lowLevelMesh: LowLevelMesh? | |
@State var timer: Timer? | |
@State var isForward: Bool = true | |
@State var morphProgress: Float = 0.0 | |
@State var dwellCounter: Int = 0 |
#ifndef LINUX_BUILD | |
#include <driver/i2s.h> | |
#include <opus.h> | |
#endif | |
#include <esp_event.h> | |
#include <esp_log.h> | |
#include <string.h> | |
#include "main.h" |
/* | |
* SPDX-FileCopyrightText: 2024 M5Stack Technology CO LTD | |
* SPDX-License-Identifier: MIT | |
* M5Stack LLM Module で日本語対話。Serial MonitorでBoth BL&CRを設定するとよいです。 | |
*/ | |
#include <Arduino.h> | |
#include <M5Unified.h> | |
#include <M5ModuleLLM.h> | |
M5ModuleLLM module_llm; |
// | |
// TipKitTestApp.swift | |
// TipKitTest | |
// | |
// Created by Yasuhito Nagatomo on 2024/05/24. | |
// | |
// A sample code that uses TipKit in visionOS. | |
// | |
// References: | |
// - Article: Swift with Majid, Discovering app features with TipKit. Basics., 07 May 2024 |
# Program: VTSTech-GPT.py 2025-01-28 1:02:59 PM | |
# Description: Python script that generates text with Cerebras GPT pretrained and Corianas finetuned models | |
# Author: Written by Veritas//VTSTech (veritas@vts-tech.org) | |
# GitHub: https://github.com/VTSTech | |
# Homepage: www.VTS-Tech.org | |
# Dependencies: transformers, colorama, Flask | |
# pip install transformers colorama flask | |
# Models are stored at C:\Users\%username%\.cache\huggingface\hub | |
import argparse | |
import time |