MCPcopy Create free account
hub / github.com/Paper2Poster/Paper2Poster / valid

Method valid

camel/benchmarks/base.py:99–108  ·  view source on GitHub ↗

r"""Get the validation data. Returns: List[Dict[str, Any]]: The validation data.

(self)

Source from the content-addressed store, hash-verified

97
98 @property
99 def valid(self) -> List[Dict[str, Any]]:
100 r"""Get the validation data.
101
102 Returns:
103 List[Dict[str, Any]]: The validation data.
104 """
105 if not self._data:
106 logger.info("Data not loaded. Loading data.")
107 self.load()
108 return self._data["valid"]
109
110 @property
111 def test(self) -> List[Dict[str, Any]]:

Callers

nothing calls this directly

Calls 1

loadMethod · 0.95

Tested by

no test coverage detected