程序经验 May 04, 2021

linux使用

Words count 290 Reading time 1 mins.

  • rmdir MyDoc

    • 删除空文件夹
  • rm -rf MyDocuments/

    • 强制删除
Read article

程序经验 March 01, 2021

Gym-Reinforcement-FrozenLake

Words count 3.4k Reading time 3 mins.

  • 使用Open-AI中的gym库创建环境。
    import torch
    import time
    import matplotlib.pyplot as plt
    from gym.envs.registration import register
    import gym
    register(
      id='FrozenLakeNotSlippery-v0',
      entry_point='gym.envs.toy_text:FrozenLakeEnv',
      kwargs={&...
Read article

程序经验 January 18, 2021

Python爬取疫情实时数据

Words count 2.6k Reading time 2 mins.

一些网站的数据并没有写在html源码中,而是通过数据流实时获取的,因此需要在F12中找到数据流的JSON文件,通过解析JSON文件来获取自己想要的信息。
此程序的功能是通过json.loads()解析json源文件,然后将json源文件保存在txt文件以及数据库中。

import requests
from bs4 import BeautifulSoup
from fake_useragent import UserAgent
import json, jsonpath
import sqlite3...
Read article

程序经验 January 11, 2021

Lenet网络:手写数字检测

Words count 5.5k Reading time 5 mins.

import matplotlib.pyplot as plt
import numpy as np
import cv2
import time
import torch
# torchvision包的主要功能是实现数据的处理,导入和预览等
import torchvision
from torchvision import datasets
from torchvision import transforms
from torch.autograd import Variable

start_time...
Read article

程序经验 January 11, 2021

git使用

Words count 843 Reading time 1 mins.

  • 先在github上建立新的仓库
    • 出现fatal: not a git repository (or any of the parent directories): .git, 则是缺少.git文件 输入git init 即可解决
  • git remote add github + http链接
  • 分支状态可在左下角查看
  • git checkout 切换分支
  • 复制需要下载的github仓库链接
  • 切换到目标目录
  • vscode终端输入git clone + url

git fetch

  • 博客格式设置...
Read article
0%