Activity for iBoxDB

  • iBoxDB iBoxDB committed [0817f3] on Code

    net10

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    image

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, Continuous reinforcement, Run in desktop UI''' '''for LunarLander-v3 Continuous v1.5''' '''python gym_lunar.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-2"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.lunar_lander import LunarLander, LunarLanderContinuous # included in torch import numpy th = torch nn = th.nn...

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, CarRacing reinforcement, Run in desktop UI''' '''for CarRacing-v3 v1.4''' '''python gym_car14.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-3"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.car_racing import CarRacing # included in torch import numpy from copy import deepcopy th = torch nn = th.nn np = numpy...

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, CarRacing reinforcement, Run in desktop UI''' '''for CarRacing-v3 v1.4''' '''python gym_car14.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-3"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.car_racing import CarRacing # included in torch import numpy from copy import deepcopy th = torch nn = th.nn np = numpy...

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, CarRacing reinforcement, Run in desktop UI''' '''for CarRacing-v3 v1.3''' '''python gym_car13.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-3"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.car_racing import CarRacing # included in torch import numpy from copy import deepcopy th = torch nn = th.nn np = numpy...

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, CarRacing reinforcement, Run in desktop UI''' '''for CarRacing-v3 v1.3''' '''python gym_car13.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-3"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.car_racing import CarRacing # included in torch import numpy from copy import deepcopy th = torch nn = th.nn np = numpy...

  • iBoxDB iBoxDB committed [481eff] on Code

    net9

  • iBoxDB iBoxDB committed [2eac56] on Code

    bind

  • iBoxDB iBoxDB committed [8dc381] on Code

    lin2

  • iBoxDB iBoxDB committed [e194be] on Code

    js

  • iBoxDB iBoxDB posted a comment on a wiki page

    tried a WinForm GUI project and a Nancy Web project using SharpDevelop472 , built on Win8 and run on Rocky Linux9 by Mono, it works fine. only the Process.Start( "exe" ) has different command-text on Linux.

  • iBoxDB iBoxDB posted a comment on a wiki page

    SharpDevelop is great and Free , take a look on SharpDevelop472 https://sourceforge.net/p/sharpdevelop472/code/ don't need register!

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.mycompany</groupId> <artifactId>Jersey_mavenproject1</artifactId> <packaging>war</packaging> <version>1.0-SNAPSHOT</version> <name>Jersey_mavenproject1</name> <build> <finalName>Jersey_mavenproject1</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId>...

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

    ShortLink Directly denoising Diffusion model, the Simplest deep learning. Version 1.1

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    ShortLink 'Directly denoising Diffusion model, the Simplest deep learning. Version 1.1

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    image

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''Directly denoising Diffusion model, the Simplest deep learning.''' '''Version 1.1''' '''python diff_c.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-6"] # 3rd parts #https://pytorch.org CPU version only import torch import torch.nn as nn import torch.utils.data as tdata from torch.optim import Adam,AdamW,SGD from torchvision.datasets import MNIST, CIFAR10 from torchvision.utils import save_image, make_grid from PIL import ImageEnhance, Image import...

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    ShortLink Directly denoising Diffusion model, the Simplest deep learning.

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    Images

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''Directly denoising Diffusion model, the Simplest deep learning.''' '''Version 1.0''' '''python diff.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-5"] # 3rd parts #https://pytorch.org CPU version only import torch import torch.nn as nn import torch.utils.data as tdata from torch.optim import Adam,AdamW from torchvision.datasets import MNIST, CIFAR10 from torchvision.utils import save_image, make_grid import torchvision.transforms as transforms import...

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''Mutant GAN generative adversarial network The simplest deep learning''' '''Version 1.0''' '''python mutant_gan.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-4"] # 3rd parts #https://pytorch.org CPU version only import torch # pip install matplotlib import matplotlib.pyplot as plt # pip install pillow from PIL import Image, ImageDraw, ImageFont import torch.utils.data as data import matplotlib.pyplot as plt import matplotlib.animation as animation...

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, Seq2Seq, Sequence to Sequence. Version 1.3''' '''python seq2seq.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-4"] # 3rd parts #https://pytorch.org CPU version only import torch import torch.utils.data as data import os th = torch nn = torch.nn class BrucePredictor(nn.Module): def __init__(self,max_seq,input_categories,out_categories,d_dim=128): super().__init__() self.embed = nn.Embedding(input_categories,d_dim) lin_dim...

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    imgs

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, CarRacing reinforcement, Run in desktop UI''' '''for CarRacing-v3 v1.1''' '''python gym_car.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-3"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.car_racing import CarRacing # included in torch import numpy from copy import deepcopy th = torch nn = th.nn np = numpy gym...

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, CarRacing reinforcement, Run in desktop UI''' '''for CarRacing-v3 v1.0''' '''python gym_car.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-3"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.car_racing import CarRacing # included in torch import numpy from copy import deepcopy th = torch nn = th.nn np = numpy gym...

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, Continuous reinforcement, Run in desktop UI''' '''for LunarLanderContinuous-v3 v1.4''' '''python gym.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-2"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.lunar_lander import LunarLander, LunarLanderContinuous # included in torch import numpy th = torch nn = th.nn np...

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, Discrete reinforcement, Run in desktop UI''' '''for LunarLander-v3 v1.0''' '''python gym_discrete.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-2"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.lunar_lander import LunarLander, LunarLanderContinuous # included in torch import numpy from copy import deepcopy th...

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

    #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, Discrete reinforcement, Run in desktop UI''' '''for LunarLander-v3 v1.0''' '''python gym_discrete.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-2"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.lunar_lander import LunarLander, LunarLanderContinuous # included in torch import numpy from copy import deepcopy th...

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    :::python #!/usr/bin/env python # coding: utf-8 '''The simplest deep learning, Discrete reinforcement, Run in desktop UI''' '''for LunarLander-v3 v1.0''' '''python gym_discrete.py''' __credits__ = ["iBoxDB", "Bruce Yang CL-N", "2025-2"] # 3rd parts #https://pytorch.org CPU version only import torch #pip install "gymnasium[box2d]" #pip install pygame import gymnasium #from gymnasium.envs.box2d.lunar_lander import LunarLander, LunarLanderContinuous # included in torch import numpy from copy import...

  • iBoxDB iBoxDB committed [4339a5] on Code

    where

  • iBoxDB iBoxDB committed [9f5569] on Code

    AI

  • iBoxDB iBoxDB committed [0f18b8] on Code

    mm

  • iBoxDB iBoxDB committed [25ea74] on Code

    file

  • iBoxDB iBoxDB committed [3ca73d] on Code

    typescript

  • iBoxDB iBoxDB committed [5a6630] on Code

    JS

  • iBoxDB iBoxDB committed [6b8f9e] on Code

    SD

  • iBoxDB iBoxDB committed [b41c2e] on Code

    cache

  • iBoxDB iBoxDB committed [28ab8a] on Code

    cache2

  • iBoxDB iBoxDB committed [255a93] on Code

    cache

  • iBoxDB iBoxDB committed [e940a6] on Code

    cshtml

  • iBoxDB iBoxDB committed [dae490] on Code

    code

  • iBoxDB iBoxDB committed [d38a2e] on Code

    3.5

  • iBoxDB iBoxDB committed [868155] on Code

    SP1

  • iBoxDB iBoxDB committed [2b4b55] on Code

    5578

  • iBoxDB iBoxDB committed [c37a32] on Code

    xpt

  • iBoxDB iBoxDB committed [0e918f] on Code

    CodeCode

  • iBoxDB iBoxDB committed [cfdffa] on Code

    site

  • iBoxDB iBoxDB committed [a7edd8] on Code

    cshtml

  • iBoxDB iBoxDB committed [123eb1] on Code

    4.8

  • iBoxDB iBoxDB committed [8ac5a8] on Code

    5577

  • iBoxDB iBoxDB committed [5d4887] on Code

    Output

  • iBoxDB iBoxDB committed [e6c726] on Code

    cursor

  • iBoxDB iBoxDB committed [477045] on Code

    md

  • iBoxDB iBoxDB committed [dac69a] on Code

    cache

  • iBoxDB iBoxDB committed [900b0e] on Code

    Style

  • iBoxDB iBoxDB committed [c736eb] on Code

    F17A

  • iBoxDB iBoxDB committed [5b269a] on Code

    Array

  • iBoxDB iBoxDB committed [96c3fe] on Code

    Script

  • iBoxDB iBoxDB committed [105104] on Code

    addin

  • iBoxDB iBoxDB committed [dfacb2] on Code

    completion

  • iBoxDB iBoxDB committed [e04e24] on Code

    9090

  • iBoxDB iBoxDB committed [c66235] on Code

    snk

  • iBoxDB iBoxDB committed [5d3778] on Code

    package

  • iBoxDB iBoxDB committed [68bbf2] on Code

    load

  • iBoxDB iBoxDB committed [1b7ee2] on Code

    descending

  • iBoxDB iBoxDB committed [de9caf] on Code

    cpp2

  • iBoxDB iBoxDB committed [0ddd31] on Code

    cpp

  • iBoxDB iBoxDB committed [f5348f] on Code

    markdown

  • iBoxDB iBoxDB committed [0769bc] on Code

    CALL

  • iBoxDB iBoxDB committed [cbda02] on Code

    profile

  • iBoxDB iBoxDB committed [0b5cf6] on Code

    my30

  • iBoxDB iBoxDB committed [44bbea] on Code

    jar

  • iBoxDB iBoxDB committed [d249e1] on Code

    vt

  • iBoxDB iBoxDB committed [7c2093] on Code

    jdk21

  • iBoxDB iBoxDB committed [cc73a7] on Code

    comment

  • iBoxDB iBoxDB committed [8fd3ad] on Code

    abc

  • iBoxDB iBoxDB committed [570e90] on Code

    t

  • iBoxDB iBoxDB committed [25c0cf] on Code

    t

  • iBoxDB iBoxDB committed [9d80dd] on Code

    center2

  • iBoxDB iBoxDB committed [9f73dc] on Code

    center

  • iBoxDB iBoxDB committed [dbd267] on Code

    68

  • iBoxDB iBoxDB committed [124c8a] on Code

    68

  • iBoxDB iBoxDB committed [5bbc74] on Code

    aa

1 >