This file contains 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
# -*- coding: utf-8 -*- | |
# This code is distributed under the 3-Clause BSD license (New BSD license). | |
# 日本の方へ | |
# 基本的に作者の名前を書いていただければ、商用利用も可能です。なお、保証はいたしかねます。 | |
# 参考URL: http://osdn.jp/projects/opensource/wiki/licenses%2Fnew_BSD_license | |
# References: https://docs.python.org/3/library/gzip.html | |
# http://henrysmac.org/blog/2010/3/15/python-pickle-example-including-gzip-for-compression.html |
This file contains 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
# -*- coding: utf-8 -*- | |
# This code is distributed under the 3-Clause BSD license (New BSD license). | |
# 基本的に作者の名前を書いていただければ、商用利用も可能です。なお、保証はいたしかねます。 | |
__author__ = 'alfredplpl' | |
# This fucntion can use on Unix systems (Mac or Linux) . | |
TIMEOUT_VAL=-1 | |
def waitKey(miliseconds): |
This file contains 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
# coding: UTF-8 | |
__auhtor__="alfredplpl" | |
#See also: | |
#https://westus.dev.cognitive.microsoft.com/docs/services/5639d931ca73072154c1ce89/operations/56f23eb019845524ec61c4d7 | |
#http://labs.eecs.tottori-u.ac.jp/sd/Member/oyamada/OpenCV/html/py_tutorials/py_gui/py_video_display/py_video_display.html | |
import httplib,cv2,json | |
## constants |
This file contains 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
using UnityEngine; | |
using UnityEngine.UI; | |
using UnityEngine.Windows.Speech; | |
using System.Collections.Generic; | |
using System.Linq; | |
public class STT : MonoBehaviour | |
{ | |
public UnityEngine.UI.Text resultDisplay; |
This file contains 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
# License: MIT License | |
__author__="Alfred Increment" | |
import glob | |
import os | |
import datetime | |
dt_now = datetime.datetime.now() | |
dateString=dt_now.strftime('%Y-%m-%d') |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
import torch | |
from torch.utils.data import Dataset | |
from torchvision import datasets, transforms | |
import torch.optim as optim | |
import cv2 | |
from tqdm import tqdm | |
from denoising_diffusion_pytorch import Unet, GaussianDiffusion |
This file contains 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
import copy | |
import torch | |
from denoising_diffusion_pytorch import Unet, GaussianDiffusion, Trainer | |
from torchvision import datasets, transforms | |
from torch.optim import Adam | |
from torch.utils.data import Dataset | |
from torch.utils import data | |
from torch.cuda.amp import GradScaler |