random note

  今天才慢慢意识到,什么才是学习,(以思考解决问题为驱动),埋头刷分只是方法,不是目的和原动力。

  既然准备读研,就要慢慢去了解研究生的生活学习方式是什么样的,涉及到哪些方面。

  读研之前要选好方向,但是现在我的兴趣点在哪里真得不知道,好像对每个方向都有兴趣,对每个方向的难点又都有畏惧。

  好像有一条合适的准则:尽量选择一个大方向,偏理论的,那么开始念研究生以后课题的方向和角度调整的空间更大,容错率更高。

  先跟着孙涵做图像处理方向的内容吧(大方向是计算机视觉,模式识别,机器学习,数据挖掘),要自己带起节奏来。

  越发觉得作为计算机系的本科生,动手能力至关重要,这在一定程度上也决定着理论的高度,相辅相成。

  英语也要get起来,以后想做出点东西,读文献是基础的基础。

  时间切片要调度好,想想以太网的CSMA/CD技术,哈哈。

时间: 2024-10-26 08:13:45

random note的相关文章

python的random模块

As an example of subclassing, the random module provides the WichmannHill class that implements an alternative generator in pure Python. The class provides a backward compatible way to reproduce results from earlier versions of Python, which used the

[LeetCode] Random Pick with Blacklist 带黑名单的随机选取

Given a blacklist B containing unique integers from [0, N), write a function to return a uniform random integer from [0, N) which is NOT in B. Optimize it such that it minimizes the call to system’s Math.random(). Note: 1 <= N <= 1000000000 0 <=

Python标准库3.4.3-random

9.6. random — Generate pseudo-random numbers Source code: Lib/random.py This module implements pseudo-random number generators for various distributions. 此模块实现伪随机数生成和各种分布 For integers, there is uniform selection from a range. For sequences, there is

HBase shell 命令入门

HBase Shell 名字可归类以下6部分: 1) General  HBase shell commands status Show cluster status. Can be 'summary', 'simple', or 'detailed'. The default is 'summary'. hbase> status hbase> status 'simple' hbase> status 'summary' hbase> status 'detailed' ver

Introduction to Object-Oriented JavaScript 转载自:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Introduction_to_Object-Oriented_JavaScript

Introduction to Object-Oriented JavaScript IN THIS ARTICLE JavaScript review Object-oriented programming Terminology Prototype-based programming JavaScript Object Oriented Programming Namespace Core Objects Custom Objects The Class The Object (Class

HBase shell指令总结

hbase是面向列的nosql,其指令较之传统关系型数据库是有所不同的,我们可以利用hbase shell命令行来熟悉hbase的基本指令. 首先进入hbase: $HBASE_HOME/bin/hbase shell 输入help指令,可以查看基本命令集合,一般常用的命令如下: whoami 查用户 help查看基本命令集合 help command 查看命令帮助 list看库中所有表 status 查看当前运行服务器状态 version 版本查询 exists '表名字' 判断表存在 hba

HBASE SHELL 命令使用

HBASE SHELL命令的使用 在hbase shell客户端有许多的操作命令,今天回顾并且总结一二,希望和广大读者共同进步,并且悉心聆听你们的意见.在此的hbase版本是:HBase 1.2.0-cdh5.10.0. HBASE SHELL命令总结如下: hbase(main):001:0> help HBase Shell, version 1.2.0-cdh5.10.0, rUnknown, Fri Jan 20 12:13:18 PST 2017 Type 'help "COMM

Python 基础 - Day 5 Learning Note - 模块 之 标准库:random 模块

常用操作 import random # 随机浮点数 print(random.random()) # 0.1706000097536472 # 返回生成一个0到1的随机浮点数: 0<= n <= 1 print(random.uniform(1,8)) # 4.060336609768256 # 函数语法: random.uniform(a,b) # 返回生成以a为下限,b为上限的随机浮点数: a<=n<=b # 随机整数 print(random.randint(1,10))

Random Pick Index

Given an array of integers with possible duplicates, randomly output the index of a given target number. You can assume that the given target number must exist in the array. Note: The array size can be very large. Solution that uses too much extra sp