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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
use anyhow::Result;
use border_core::{record::Record, Obs};
use serde::{Deserialize, Serialize};
use std::{default::Default, marker::PhantomData};
#[cfg(feature = "tch")]
use {std::convert::TryFrom, tch::Tensor};
#[derive(Debug, Clone)]
pub struct BorderAtariObs {
pub frames: Vec<u8>,
}
impl From<Vec<u8>> for BorderAtariObs {
fn from(frames: Vec<u8>) -> Self {
Self { frames }
}
}
impl Obs for BorderAtariObs {
fn dummy(_n: usize) -> Self {
Self {
frames: vec![0; 4 * 84 * 84],
}
}
fn merge(self, _obs_reset: Self, _is_done: &[i8]) -> Self {
unimplemented!();
}
fn len(&self) -> usize {
1
}
}
#[cfg(feature = "tch")]
impl From<BorderAtariObs> for Tensor {
fn from(obs: BorderAtariObs) -> Tensor {
let tmp = &obs.frames;
Tensor::try_from(tmp).unwrap().reshape(&[1, 4, 1, 84, 84])
}
}
pub trait BorderAtariObsFilter<O: Obs> {
type Config: Clone + Default;
fn build(config: &Self::Config) -> Result<Self>
where
Self: Sized;
fn filt(&mut self, obs: BorderAtariObs) -> (O, Record);
fn reset(&mut self, obs: BorderAtariObs) -> O {
let (obs, _) = self.filt(obs);
obs
}
}
#[derive(Serialize, Deserialize, Debug)]
#[derive(Clone)]
pub struct BorderAtariObsRawFilterConfig;
impl Default for BorderAtariObsRawFilterConfig {
fn default() -> Self {
Self
}
}
pub struct BorderAtariObsRawFilter<O> {
phantom: PhantomData<O>,
}
impl<O> BorderAtariObsFilter<O> for BorderAtariObsRawFilter<O>
where
O: Obs + From<BorderAtariObs>,
{
type Config = BorderAtariObsRawFilterConfig;
fn build(_config: &Self::Config) -> Result<Self> {
Ok(Self {
phantom: PhantomData,
})
}
fn filt(&mut self, obs: BorderAtariObs) -> (O, Record) {
(obs.into(), Record::empty())
}
}