-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataScience.ts
More file actions
39 lines (24 loc) · 1.67 KB
/
DataScience.ts
File metadata and controls
39 lines (24 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { linkToMyWork } from './common'
export const items =
`## Data Science
I have done some data science and machine learning research projects in the past. Some interesting project are listed here as well.
- ### [toy-openai-gym-collections](https://github.com/quantumsnowball/toy-openai-gym-collections) - all about deep reinforcement learning



Try to use use deep reinforcement learning models to play computer games! It was not easy at all.
- ### [toy-datasets-collections](https://github.com/quantumsnowball/toy-datasets-collections)




These are very common machine learning and deep learning datasets.
- ### [marble-drawing-scam-analysis](https://github.com/quantumsnowball/marble-drawing-scam-analysis)



To solve any probability problems, you can either use maths to solve it by first principal, or use programming to solve it by simulation.
`
const markdown = items + `${linkToMyWork}
`
export default markdown