basic notes comp 3322

解决Sourcetree remote: HTTP Basic: Access denied fatal: Authentication failed报错

1,找到在 C:\Users\你的文件夹\AppData\Local\Atlassian\SourceTree 文件夹找到 passwd 和 userhosts 两个文件夹 2,删除passwd中的密码。删除userhosts中的账号 3,重新打开sourcetree,拉取代码或者推送代码时会让重新 ......

JAVA Http Basic auth获取token

本文主要参考:https://www.cnblogs.com/xiaocandou/p/7991927.html 应用在获取 token 时,可以向 api 管理平台发起一个 HTTP POST 请求,内容如下: • 请求地址: https://****.com/token • 请求内容: gran ......
Basic token JAVA Http auth

【转载】为什么记笔记的应用程序不能让我们更聪明_Why_note-taking_apps_don’t_make_us_smarter

/ They’re designed for storage, not sparking insights. Can AI change that? / 它们专为存储而设计,而不是激发见解。人工智能能改变这一点吗? By Casey Newton, a contributing editor who ......

basic Vim

Vim(Vi IMproved)是一个功能强大的文本编辑器,广泛用于Unix和Linux系统中。下面是一些Vim的基础操作: 启动Vim:在终端中输入vim命令,后跟要编辑的文件名,例如:vim filename.txt。 插入文本:在普通模式下按下i键,进入插入模式,然后可以开始输入文本。 保存文 ......
basic Vim

Machine learning note(1)

注:本笔记不给出完整解释 ## 正规方程 设$z=\theta^{T}x$ 设损失函数为$J(\theta)$,求令$\frac{\partial J}{\partial \theta}=0$的$\theta$ 由此得出最优的$\theta$ ## 牛顿迭代 回顾一下梯度下降:$\theta'=\t ......
learning Machine note

MAPF Paper Reading Note

随便写写记录一下 ## 1. 2005-Cooperative Pathfinding ### 1.1. LRA* local repair A* - 依次做A* - 即将开始碰撞时,replan - a general replan solution: 每次重规划时,新增noise,按照比例加入$ ......
Reading Paper MAPF Note

"deepleraning.ai" study Notes P52 53 Dropout

# reason why dropout could resolve overfitting ## the first: smaller neural network seems like it should have a regularizing effect(P52) ## the second ......
quot deepleraning Dropout Notes study

"deepleraning.ai" study Notes P51 为什么正则化可以减少过拟合

# L2 regulization * what we have done is add a regularization item in the cost function * the cost function in neural network will be # why is it that ......
正则 quot deepleraning Notes study

"deepleraning.ai" study Notes P47 1.1 训练 测试 开发

# How to make your neural network work well _Ranging from things like hyperparameter tuning ,to how to set up your data, to how to make sure your opti ......
quot deepleraning Notes study 1.1

Note of SHU Computer Graphics (01): 计算机图形学概述

# 什么是计算机图形学? 研究怎样利用计算机来显示、生成和处理图形的原理、方法和技术的一门学科,这里的图形是指三维图形的处理。 - **图形**: 计算机图形学的研究对象 - 能在人的视觉系统中产生视觉印象的客观对象 - 包括自然景物、拍摄到的图片、用数学方法描述的图形等等 - **构成图形的要素* ......
Computer Graphics 图形 计算机 Note

COMP3506数据结构与算法

Assignment One – 15%Algorithms and Data Structures – COMP3506/7505 – Semester 2, 2023Due: 3pm on Friday September 1st (week 6)SummaryThe main objectiv ......
数据结构 算法 结构 数据 COMP

COMP4620/8620 AI算法分析

COMP4620/8620 – Advanced Topics in AI Decision-making under Uncertainty in Robotics Semester-2 2023 – Assignment 1 Due date: Monday, 4 September 2023 ......
算法 COMP 4620 8620

COMP SCI 3004操作系统的虚拟内存模拟

SCI 3004COMP SCI 3004/7064 Operating SystemsPractical 2 – Virtual Memory SimulationAimBy doing this practical work, you will learn how to implement pa ......
内存 系统 COMP 3004 SCI

COMP3610编程技巧几点看法

COMP3610/6361 Principles of Programming LanguagesAssignment 1ver 1.1Submission Guidelines Due time: Aug 31, 2023, 11am (Canberra Time) Submit a pdf vi ......
编程技巧 看法 技巧 COMP 3610

COMP 636 BRMM模型算法

COMP 636: Python AssessmentDue: 5pm Monday 28 August 2023 Worth 40% of COMP636 grade Submit via Akoraka | LearnIntroductionThe Bankside-Rakaia Motorkh ......
算法 模型 COMP BRMM 636

COMP8711数据库建模与信息管理

Flinders University2023 S2 COMP8711Database Modelling and Information ManagementAssignment 1Due date: 10 September 2023This assessment is an individua ......
数据库 数据 信息 COMP 8711

COMP123 2D图形算法难点讨论

COMP123 Primitive 2D DrawingAssignment SpecificationIn this assignment, you will be required to implement some of the algorithms that we have discusse ......
难点 算法 图形 COMP 123

torch.nn基础学习教程 | PyTorch nn Basic Tutorial

> 基于`torch.nn`搭建神经网络的基础教程大纲: ## **1. 引言** 在我们开始深入探讨`torch.nn`之前,我们首先需要理解PyTorch及其神经网络库的基础知识。这一部分的内容将帮助你对PyTorch有一个整体的了解。 ### 1.1 **为什么选择PyTorch?** - * ......
学习教程 Tutorial PyTorch 基础 教程

[note] pytorch的几种维度操作方式比对

## pre 今天看代码在想 `torch.unbind + torch.cat` 与 `torch.reshape` 的区别,直观上来看reshape似乎更便利。 ## chatgpt ### 问题 x is a tensor of three dimension, what is the dif ......
维度 pytorch 方式 note

Leetcode 383. 赎金信(Ransom note)

[题目链接](https://leetcode.cn/problems/ransom-note) 给你两个字符串:ransomNote 和 magazine ,判断 ransomNote 能不能由 magazine 里面的字符构成。 如果可以,返回 true ;否则返回 false 。 magazi ......
Leetcode Ransom note 383

「Note」图论方向 - 网络流

# 1. 网络流 ## 1.1. 定义 ### 1.1.1. 网络 **网络**是指一个**有向图** $G=(V,E)$,每条边 $(u,v)\in E$ 有一个权值,$c(u,v)$ 称为**容量**,当 $(u,v)\notin E$ 时,有 $c(u,v)=0$。 特殊地,在图中有**源点* ......
方向 网络 Note

[Node.js] Create a note cli

# Create a node cli ## Init a project Run: `npm run init` Let's say we want to create a cli command call `note-dev`, let's add this into `package.json ......
Create Node note cli js

Basic Authentication in ASP.NET Web API

Basic Authentication in ASP.NET Web API 原始资料:Basic Authentication in ASP.NET Web API | Microsoft Learn 演示了如何实现basic 身份验证。 注意: 在 Web API 2 中,您应该考虑编写身份验 ......
Authentication Basic ASP API NET

nginx配置auth_basic,要求账号密码的原理

一、HTTP的身份验证 HTTP提供了一个用于权限控制和认证的通用框架。 流程如下: 1、用户第一次通过客户端访问页面,服务器端向客户端返回401状态码,并在WWW-Authenticate响应头说明验证的信息。 2、客户端收到相应后,弹窗让用户输入用户名和密码。 3、用户输入后,客户端通过编码或加 ......
auth_basic 账号 原理 密码 nginx

CSAPP Notes: Types

# CSAPP Notes,类型 > 随手写的,可能会有错误(); ## 类型 | 数据类型 | 大小 | | | | | `char` | 1 | | `bool` | 1 | | `short int (short)` | 2 | | `int` | 4 | | `long int (long) ......
CSAPP Notes Types

什么是 SAP S/4HANA 的 VDM Layering Architecture 的 VDM Basic View

在 SAP S/4HANA 的 VDM Layering Architecture 中,VDM Basic View 是体系结构的最底层。它是构建数据模型的基础,提供了直接从底层数据表获取原始数据的能力。VDM Basic View 旨在将操作性数据从底层系统中抽取出来,为上层的数据整合和分析提供原 ......
Architecture VDM Layering 4HANA Basic

「Note」数据结构方向 - 数据结构进阶

# 1. 平衡树 咕咕咕 # 2. 树套树 咕咕咕 # 3. LCT ## 3.1. 介绍 ### 3.1.1. 基本概念 LCT 全名 Link-Cut-Tree,动态树,是用来维护**动态森林**的数据结构。 它支持以下操作(需要保证任意操作时刻维护的都为森林): - 连边。 - 断边。 - 换 ......
数据结构 结构 数据 方向 Note

「Note」图论方向 - 图论进阶

# 1. 2-SAT ## 1.1. 介绍 对于一些节点,每个节点存在两个状态(非 $0$ 即 $1$),我们给出一些如下类型的限制条件: - 节点 $i$ 状态为 $1/0$。 - 若节点 $i$ 状态为 $1/0$,那么节点 $j$ 状态为 $1/0$。 - 节点 $i,j\ (i\not=j) ......
方向 Note

COMP4650 文档分析

COMP4650COMP4650/6490 Document Analysis – Semester 2 / 2023Assignment 1Due 17:00 on Wednesday 16 August 2023 AEST (UTC +10)Last updated July 28, 2023O ......
文档 COMP 4650

COMP2401A Pokemon 问题

COMP2401A – Assignment 5PrerequisitesPlease review the lectures up to and including Module 15 – Scripting.Download the csv file containing Pokemon des ......
Pokemon 问题 2401A COMP 2401